home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
353_02
/
boxes2.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-18
|
689b
|
28 lines
// Chapter 5 - Program 9
#include <iostream.h>
#include "box.h"
main()
{
box small, medium, large; //Three boxes to work with
small.set(5, 7);
// Note that the medium box uses the values
// supplied by the constructor
large.set(15, 20);
cout << "The small box area is " << small.get_area() << "\n";
cout << "The medium box area is " << medium.get_area() << "\n";
cout << "The large box area is " << large.get_area() << "\n";
}
// Result of execution
//
// The small box area is 35
// The medium box area is 64
// The large box area is 300